home *** CD-ROM | disk | FTP | other *** search
/ Deep Throat Girls 5 / Deep Throat Girls 5.iso / mac / MAC.Dir / 00063_control zoom.ls < prev    next >
Encoding:
Text File  |  1997-02-09  |  550 b   |  21 lines

  1. on mouseDown
  2.   global play, time, rate, movie
  3.   if the castNum of sprite 5 = movie then
  4.     if the controller of member movie = 0 then
  5.       set the controller of member movie to 1
  6.       set time to the movieTime of sprite 5
  7.       set rate to the movieRate of sprite 5
  8.       set play to 1
  9.       puppetSprite(5, 0)
  10.       go(7)
  11.     else
  12.       set the controller of member movie to 0
  13.       set time to the movieTime of sprite 5
  14.       set rate to the movieRate of sprite 5
  15.       set play to 1
  16.       puppetSprite(5, 0)
  17.       go(6)
  18.     end if
  19.   end if
  20. end
  21.